encoding/hex.dumper.n (field)

6 uses

	encoding/hex (current package)
		hex.go#L224: 	n          uint // number of bytes, total
		hex.go#L247: 			h.buf[0] = byte(h.n >> 24)
		hex.go#L248: 			h.buf[1] = byte(h.n >> 16)
		hex.go#L249: 			h.buf[2] = byte(h.n >> 8)
		hex.go#L250: 			h.buf[3] = byte(h.n)
		hex.go#L280: 		h.n++